Dashboard Temp Share Shortlinks Frames API

HTMLify

style.css
Views: 15 | Author: huxn-webdev
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
* {
  padding: 0;
  margin: 0;
}

:root {
  --base: #ffc600;
  --spacing: 10px;
  --blur: 2px;
}

.container {
  text-align: center;
  font-family: sans-serif;
  font-size: 20px;
  margin: 20px;
}

.controls {
  margin-bottom: 50px;
}

img {
  padding: var(--spacing);
  background: var(--base);
  filter: blur(var(--blur));
  width: 100vh;
}

input {
  width: 100px;
  border: none;
  background: transparent;
}